home *** CD-ROM | disk | FTP | other *** search
/ The Book of Tells / The Book of Tells.iso / vidgal.dir / 00017_Script_17 < prev    next >
Text File  |  1994-09-22  |  842b  |  29 lines

  1. on exitFrame
  2.   global movieSpriteNum,announcerOn,announcerAif,mStartTime,mStopTime,moving,audioClip,movieClip
  3.   
  4.   puppetsprite 46,TRUE
  5.   puppetsprite 47,TRUE
  6.   
  7.   -- Need to set announcerAif from database
  8.   set announcerAif = audioClip
  9.   set announcerOn=TRUE
  10.   
  11.   set moving=FALSE
  12.   
  13.   -- Check this on the PC
  14.   set the castNum of sprite movieSpriteNum to the number of cast movieClip
  15.   updatestage
  16.   unload
  17.   
  18.   startTimer
  19.   repeat while the timer < 10
  20.   end repeat
  21.   
  22.   if mStartTime="--" then set mStartTime = 0
  23.   if mStopTime="--" then set mStopTime = the duration of cast (the castNum of sprite movieSpriteNum)
  24.   
  25.   set the movieTime of sprite movieSpriteNum= mStartTime
  26.   set mStartTime = the movieTime of sprite movieSpriteNum
  27.   set the castnum of sprite 23 to 140
  28.   set the castnum of sprite 21 to 144
  29. end